:root {
    --primary-red: #e31e1e;
    --glow-red: rgba(255, 0, 0, 0.7);
    --input-bg: #9b9b9b;
    --black-card: #000000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.token-info{

    font-size: 12px;

    color: #d9d9d9;

    text-align: center;

    margin-top: 10px;

    margin-bottom: 15px;

}
body {
    background-color: #000;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    color: #fff;
    font-family: 'Roboto', sans-serif;
}


.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(100, 0, 0, 0.25) 0%, rgba(0,0,0,0.95) 85%);
}


.decoration-line {
    position: absolute;
    top: 22%;
    width: 15%;
    height: 3px;
    background-color: var(--primary-red);
    box-shadow: 0 0 15px var(--primary-red);
    z-index: 1;
}
.line-left { left: 12%; }
.line-right { right: 12%; }


.btn-volver {
    position: absolute;
    top: 40px;
    left: 40px;
    background-color: var(--primary-red);
    color: white;
    text-decoration: none;
    padding: 6px 25px;
    border-radius: 15px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
    z-index: 10;
}


.login-card {
    background: var(--black-card);
    width: 380px;
    padding: 35px;
    border-radius: 15px;
    border-top: 4px solid var(--primary-red);
    box-shadow: 0 0 60px 5px var(--glow-red);
    text-align: center;
    position: relative;
    z-index: 5;
}

h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 35px;
    letter-spacing: 2px;
    margin-bottom: 25px;
}


.input-group {
    text-align: left;
    margin-bottom: 15px;
}

.input-group label {
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 6px;
    display: block;
}

.input-field {
    background-color: var(--input-bg);
    border-radius: 25px;
    display: flex;
    align-items: center;
    padding: 8px 18px;
    height: 42px;
}

.input-field i {
    color: #222;
    font-size: 16px;
    width: 25px;
}

.input-field input {
    background: transparent;
    border: none;
    outline: none;
    width: 100%;
    padding: 0 10px;
    font-weight: 600;
    color: #000;
}

.eye-toggle {
    cursor: pointer;
    color: #333;
}


.btn-submit {
    width: 65%;
    background: linear-gradient(180deg, #ff2e2e 0%, #b30000 100%);
    color: white;
    border: none;
    padding: 10px;
    border-radius: 20px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    cursor: pointer;
    margin-top: 15px;
}

.footer-form {
    margin-top: 20px;
    font-size: 14px;
    font-weight: 700;
}

.footer-form a {
    color: var(--primary-red);
    text-decoration: none;
}

.main-footer {
    position: absolute;
    bottom: 30px;
    font-size: 11px;
    letter-spacing: 4px;
    color: #888;
}